github.com/golang/protobuf/proto.textWriter.buf (field)

35 uses

	github.com/golang/protobuf/proto (current package)
		text_encode.go#L83: 			return w.buf, nil
		text_encode.go#L87: 		return w.buf, err
		text_encode.go#L122: 	buf       []byte
		text_encode.go#L131: 		w.buf = append(w.buf, p...)
		text_encode.go#L140: 				w.buf = append(w.buf, ' ')
		text_encode.go#L143: 			w.buf = append(w.buf, frag...)
		text_encode.go#L153: 		w.buf = append(w.buf, frag...)
		text_encode.go#L156: 			w.buf = append(w.buf, '\n')
		text_encode.go#L171: 	w.buf = append(w.buf, c)
		text_encode.go#L183: 		w.buf = append(w.buf, fd.Name()...)
		text_encode.go#L187: 		w.buf = append(w.buf, fd.Message().Name()...)
		text_encode.go#L412: 			w.buf = append(w.buf, `\n`...)
		text_encode.go#L414: 			w.buf = append(w.buf, `\r`...)
		text_encode.go#L416: 			w.buf = append(w.buf, `\t`...)
		text_encode.go#L418: 			w.buf = append(w.buf, `\"`...)
		text_encode.go#L420: 			w.buf = append(w.buf, `\\`...)
		text_encode.go#L423: 				w.buf = append(w.buf, c)
		text_encode.go#L425: 				w.buf = append(w.buf, fmt.Sprintf(`\%03o`, c)...)
		text_encode.go#L557: 		w.buf = append(w.buf, ' ')